home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / sysdeps / sparc / jmp_buf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-18  |  383 b   |  15 lines

  1. /* Define the machine-dependent type `jmp_buf'.  SPARC version.  */
  2.  
  3. /* NOTE: The assembly code in __longjmp.S and setjmp.S knows the layout
  4.    of this structure.  You must hack the assembly code if you want to change
  5.    the order of the members.  */
  6.  
  7. typedef struct
  8.   {
  9.     /* Return PC (register o7).  */
  10.     __ptr_t __pc;
  11.  
  12.     /* Saved FP.  */
  13.     __ptr_t __fp;
  14.   } __jmp_buf[1];
  15.